Worldclim elevation map

Worldclim elevation map#

import pandas as pd

import cartopy.crs as ccrs
import hvplot.xarray
import hvplot.pandas
import xarray as xr
from bokeh.plotting import figure, show, output_notebook
# from bokeh.resources import INLINE

# output_notebook(INLINE)

# output_notebook()
ds = xr.open_dataarray('wc2.1_10m_elev.tif')
ds = ds.sel(band=1)


dfp = pd.read_csv('occ.csv',index_col=0)

ds.hvplot(x="x",y="y")

# dfp.hvplot.scatter(x='lon',y='lat')
# import panel as pn

# pane = pn.panel(xplot)
# pane